home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / sed.prerm < prev    next >
Text File  |  2008-05-03  |  197b  |  18 lines

  1. #! /bin/sh -e
  2.  
  3. pkg=sed
  4.  
  5. case "$1" in
  6.   (remove|deconfigure)
  7.     install-info --quiet --remove sed
  8.     ;;
  9.  
  10.   (upgrade|failed-upgrade)
  11.     ;;
  12.  
  13.   (*)
  14.     echo "$0: Undocumented call: \"$@\"" >&2
  15.     exit 1
  16.     ;;
  17. esac
  18.